Disable gegl-lies conversions
authorDaniel Sabo <DanielSabo@gmail.com>
Sat, 6 Apr 2013 03:47:56 +0000 (20:47 -0700)
committerDaniel Sabo <DanielSabo@gmail.com>
Sat, 6 Apr 2013 03:48:29 +0000 (20:48 -0700)
They lazy table generation these conversions use causes
babl to overestimate their cost while also overestimating
their accuracy.

I used "#if 0" rather than disabling the library because I
want to ensure the conversion gets removed without people
needing to do rm lib/babl-0.1/*

extensions/gggl-lies.c

index 47a973b7c8c32751a1e0d01db429fc73b41b5428..058ec8ee1b993e8c529aeac55667c634e256d521 100644 (file)
@@ -1564,6 +1564,7 @@ int init (void);
 int
 init (void)
 {
+#if 0
   const Babl *rgbaF = babl_format_new (
     babl_model ("RGBA"),
     babl_type ("float"),
@@ -1758,6 +1759,7 @@ init (void)
   o (rgb8, rgbA8);
   o (rgba8, rgb8);
   o (rgbaF, rgbA8);
+#endif
 
   return 0;
 }